home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue38
/
BuildPro
/
BUILD
/
BasicBuild.bat
next >
Wrap
DOS Batch File
|
1998-04-22
|
424b
|
22 lines
@ECHO OFF
REM BasicBuild.bat
REM This just compiles the product in using default compiler options.
REM Build the first project.
CD "..\My Project 1"
DCC32 /Q MyProject1.dpr
IF ERRORLEVEL 1 GOTO FAILED
REM Now build the second project.
CD "..\My Project 2"
DCC32 /Q MyProject2.dpr
IF ERRORLEVEL 1 GOTO FAILED
ECHO My Product built OK
GOTO END
:FAILED
ECHO My Product failed to build
:END
CD ..\Build